* Goodbye Kitty Cafe – Contact Us Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

/* 🌸 Global Layout */
body {
  background: linear-gradient(to bottom, #ffe0f1, #fff5fb);
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* ------------------------------------------------ */
/* 🌸 UPDATED NAV BAR TO MATCH OTHER WEBSITE PAGES */
/* ------------------------------------------------ */

nav.navbar {
  background: linear-gradient(90deg, #ffb6d5, #ffe1f0);
  border-bottom: 3px solid #ff69b4;
  box-shadow: 0 4px 18px rgba(255, 170, 200, 0.5);
  padding: 0.9rem 1.4rem;
}

/* pink hamburger icon */
.navbar-toggler {
  border: 2px solid #e6007e !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='hotpink' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* logo area */
.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 10px;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e6007e;
  margin-left: 10px;
  text-shadow: 1px 1px #ffd3e7;
}

/* nav links */
.navbar-nav .nav-link {
  color: #e6007e !important;
  font-weight: bold;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff4fa8 !important;
  transform: scale(1.12);
}

.navbar-nav .nav-link.active {
  text-decoration: underline;
  color: #b3005c !important;
}

/* order button */
.nav-button {
  background: #fff;
  padding: 0.55rem 1.3rem;
  border: 2px solid #e6007e;
  border-radius: 28px;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(255,150,200,0.5);
}

.nav-button:hover {
  background: #e6007e;
  color: white;
  transform: translateY(-2px);
}

/* bow animation */
.bow {
  width: 42px;
  height: 28px;
  animation: bow-wiggle 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 4px #ffb6d5);
}

@keyframes bow-wiggle {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(5deg); }
}

/* ------------------------------------------------ */
/* 🌸 YOUR ORIGINAL CSS (unchanged below)           */
/* ------------------------------------------------ */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ffb6d5, #ffe1f0);
  padding: 0.9rem 2.2rem;
  border-bottom: 3px solid #ff69b4;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(255, 170, 200, 0.5);
}

/* Logo Area */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.logo h1 {
  margin: 0;
  color: #e6007e;
  font-size: 1.7rem;
  text-shadow: 1px 1px #ffd3e7;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #e6007e;
  font-weight: bold;
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff4fa8;
  transform: scale(1.12);
}

/* Active Page Styling */
.nav-links li:nth-child(5) a {
  text-decoration: underline;
  color: #b3005c;
}

/* Order Button (duplicate but safe) */
.nav-button {
  padding: 0.55rem 1.3rem;
  border: 2px solid #e6007e;
  border-radius: 28px;
  background: #fff;
  color: #e6007e;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255,150,200,0.5);
}

.nav-button:hover {
  background: #e6007e;
  color: white;
  transform: translateY(-2px);
}

/* 🌷 Main Container */
main {
  max-width: 760px;
  margin: 2.2rem auto;
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 26px #ffd6ea;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  color: #e6007e;
  margin-bottom: 1.2rem;
}

h2 {
  color: #e6007e;
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

/* Sections */
.section {
  background: #ffe1f0;
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
  box-shadow: 0 2px 10px #ffd3e8;
}

/* Event List */
.upcoming-events-list {
  padding-left: 1rem;
}

.upcoming-events-list li {
  background: #fff7fb;
  border-left: 6px solid #ff69b4;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 7px #f5cde4;
  color: #e6007e;
  font-size: 1.08rem;
}

/* Contact Details */
.contact-details {
  font-size: 1.15rem;
  color: #e6007e;
}

/* Contact Form */
.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 1rem;
  color: #b3005c;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #e6007e;
  border-radius: 10px;
  background: #fff7fb;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 1rem;
  background: #e6007e;
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #ff7ebd;
}

/* 📱 Responsive */
@media (max-width: 780px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }

  .logo img {
    width: 55px;
    height: 55px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-button {
    margin-top: 8px;
  }

  main {
    padding: 1.4rem;
  }
}

/* Footer */
footer {
  text-align: center;
  padding-top: 1rem;
  margin: 2.4rem 0;
  color: #e6007e;
  border-top: 3px solid #ff69b4;
  font-size: 0.95rem;
}